home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1993 / Internet Info CD-ROM (Walnut Creek) (1993).iso / networking / ip / ka9q / MacBMsrc.hqx / Mac bm Project / mac_stat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-17  |  386 b   |  18 lines

  1. /*
  2.  * File: mac_stat.h
  3.  * Purpose:  This file contains the stat data structure.  This 
  4.  * structure will be filled in by the stat routine located in
  5.  * the mac_misc.c file.
  6.  */
  7.  
  8. struct stat {
  9.     time_t    st_atime;    /* last access time */
  10.     time_t    st_mtime;    /* last modified time */
  11.     off_t    st_size;    /* total size of file */
  12.     };
  13.     
  14. struct RemoveIt {
  15.     struct RemoveIt *next;
  16.     char *name_ptr;
  17. };
  18.